home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / tp5patch.arc / TD1PAT.ARC / FIXTURBO.2 < prev    next >
Text File  |  1991-04-28  |  478b  |  25 lines

  1. ;fix for problem with TURBO's standalone debugging option involving garbage
  2. ;in names pool
  3.  
  4. ;convert EXE file to BIN file
  5. ren turbo.exe turbo.bin
  6. ;load BIN file into DEBUG
  7. debug turbo.bin
  8. ;display registers
  9. r
  10. ;assemble at ????:b605, where ???? = cs+1000h
  11. ;e.g., if cs = 37fc, then ???? = 47fc
  12. a ????:b605
  13. ;enter new instructions
  14. nop
  15. nop
  16. nop
  17. ;enter blank line
  18.  
  19. ;write changes to disk
  20. w
  21. ;quit DEBUG
  22. q
  23. ;convert BIN file to EXE file
  24. ren turbo.bin turbo.exe
  25.